home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / Think C dcmd 1.0 ƒ / Think Put Lib source / PutCStr.c < prev    next >
Text File  |  1994-06-12  |  109b  |  10 lines

  1. void PutChar(char c);
  2.  
  3. void PutCStr(const char* s)
  4. {
  5.         int     i = 0;
  6.         
  7.     while ( s[i] )
  8.         PutChar( s[i++] );
  9. }
  10.